home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 38
/
Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso
/
-seriously_amiga-
/
misc
/
wordconverter
/
installwordconverter
next >
Wrap
Text File
|
1999-02-08
|
2KB
|
108 lines
; $VER: WordConverter Installation script 0.9.7 (18.01.99)
(set #CopyingMain "Copying program files...")
(set #CopyingLibs "Copying required libraries...")
(set #CopyingScripts "Copying ARexx scripts...")
(set #CopyingCatalogs "Copying localisation files...")
(set #CopyingLibsHelp "Will copy all required libraries.")
(set #CopyingScriptsHelp "Will copy all available ARexx scripts")
(set #CopyingCatalogsHelp "Will copy all available language translations")
(set #about
(cat "\n\nWord Converter version 0.9.6\n"
"(c) 1997-1998 Peter Drapich\n"
"Converts Word for Windows documents\n"
"into ASCII, AmigaGuide or HTML files.\n\n"
"http://docent.union.org.pl\n"
"email: docent@union.org.pl\n"
"Word Converter is shareware!\n"
))
(set #about-help
(cat "\n\n This script will install Word Converter and"
" all related files onto your harddisk."
))
(set #goodbye
(cat "\n\nThats all - have fun!\n"
))
;========================================
; Welcome the user.
(complete 0)
(welcome)
(message #about
(help #about-help)
)
(complete 10)
(set dest_dir
(askdir
(prompt "\nSelect the place, where Word Converter should\n"
" be copied. A 'WordConverter' directory will be created there.\n")
(help @askdir-help)
(default @default-dest)
)
)
(set @default-dest dest_dir)
(set dest_dir
(tackon dest_dir "WordConverter")
)
(makedir dest_dir)
(complete 30)
(copyfiles
(source "")
(prompt "\n" #CopyingMain)
(dest dest_dir)
(infos)
(all)
)
(complete 70)
(copylib
(prompt "\n" #CopyingLibs)
(help #CopyingLibsHelp)
(source "libs/reqtools.library")
(dest "LIBS:")
(optional "force" "ask user")
(confirm)
)
(complete 80)
(copyfiles
(source "rexx/")
(prompt "\n" #CopyingScripts)
(help #CopyingScriptsHelp)
(dest "REXX:")
(confirm)
(all)
)
(complete 90)
(copyfiles
(source "catalogs/")
(prompt "\n" #CopyingCatalogs)
(help #CopyingCatalogsHelp)
(dest "LOCALE:")
(confirm)
(all)
)
(complete 100)
(message #goodbye)
(exit)